home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 December / Chip_1999-12_cd.bin / zkuste / MacOS / FILES / MARI.SIT / Mariner 4.0 folder / MarinerÆ 4.0.rsrc / STR#_555.txt < prev    next >
Text File  |  1999-10-25  |  2KB  |  49 lines

  1. TRUE
  2. Returns the logical TRUE value, which is equivalent to the numeric value 1.
  3.  
  4. NOT(value)
  5. Returns the inverse of a logical value. If number is non-zero, NOT returns 0. If number = 0, NOT returns 1.
  6.  
  7. NA
  8. Returns the numeric error value (#N/A), NA is an error that indicates no value available.
  9.  
  10. OR(n1,n2...)
  11. Returns TRUE (numeric value 1) if any arguments are True.
  12.  
  13. ISTEXT(value)
  14. Returns TRUE (numeric value 1) if value is text.
  15.  
  16. ISNUMBER(value)
  17. Returns TRUE (numeric value 1) if value is a valid number. ISNUMBER returns FALSE if value is text or an error value.
  18.  
  19. ISNONTEXT(value)
  20. Returns TRUE (numeric value 1) if value is not text.
  21.  
  22. ISNA(value)
  23. Returns TRUE (numeric value 1) if value is the error value #NA (number not available).
  24.  
  25. ISERROR(value)
  26. Returns TRUE (numeric value 1) if value is any error value.
  27.  
  28. ISERR(value)
  29. Returns TRUE (numeric value 1) if value is any error value except #NA.
  30.  
  31. ISBLANK(value)
  32. Returns TRUE (numeric value 1) if value refers to an empty cell.
  33.  
  34. IF(value,true_value,false_value)
  35. Returns one of two values, either true_value or false_value, based on whether value evaluates to TRUE or FALSE.
  36.  
  37. FALSE
  38. Returns the logical FALSE value, which is equivalent to the numeric value 0.
  39.  
  40. ERROR
  41. Returns a numeric error value (#Value!).
  42.  
  43. CHOOSE(index,n1,n2,n3)
  44. Returns the argument specified by index, from a list of arguments. The first argument in list is specified by index as 1, the second is specified as 2...
  45.  
  46. AND(n1,n2...)
  47. Returns TRUE (numeric value 1) if all arguments are TRUE.
  48.  
  49.